df4371bf4cc0d693ba1e5fe1f00e02265b303751,util-taglib/src/com/liferay/taglib/ui/FormNavigatorTag.java,FormNavigatorTag,getCategoryLabels,#,122
Before Change
ThemeDisplay themeDisplay = (ThemeDisplay)request.getAttribute(
WebKeys.THEME_DISPLAY);
String[] categoryLabels = FormNavigatorCategoryUtil.getLabels(
_id, themeDisplay.getLocale());
if (ArrayUtil.isEmpty(categoryLabels)) {
categoryLabels = new String[] {""};
}
return categoryLabels;
}
protected String[][] getCategorySectionKeys() {
After Change
ThemeDisplay themeDisplay = (ThemeDisplay)request.getAttribute(
WebKeys.THEME_DISPLAY);
return FormNavigatorCategoryUtil.getLabels(
_id, themeDisplay.getLocale());
}
protected String[][] getCategorySectionKeys() {